home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Libraries / Graphic Elements 2 / Extras / SFXProcs.h < prev   
Encoding:
C/C++ Source or Header  |  1994-06-23  |  440 b   |  35 lines  |  [TEXT/MMCC]

  1. /*
  2.     SFXProcs.h
  3.     
  4.     Special effects for Graphic Elements
  5.     
  6.     Copyright 1994 by Al Evans. All rights reserved.
  7.     
  8.     6/9/94
  9.     
  10. */
  11.  
  12. #ifndef SFXPROCS
  13. #define SFXPROCS
  14.  
  15. #include "SFXCtrlr.h"
  16.  
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. //Horizontal wipe
  23. pascal void SFXHWipe(SFXCtrlrPtr controller);
  24.  
  25. //Vertical wipe
  26. pascal void SFXVWipe(SFXCtrlrPtr controller);
  27.  
  28. //Blink
  29. pascal void SFXBlink(SFXCtrlrPtr controller);
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33.  
  34.  
  35. #endif